🌎 rns.kin.earth git 🌍
Commit bfab2964b686fbed07277eab3004b4b97cdee4df
Parents : 1bad7f5
Author : Mark Qvist <bc7291552be7a58f361522990465165c>
Signature : T66BB85Valid, signed by author
Date : 2026-08-23T11:30:43+02:00
Fixed rnstatus including not-yet-blocked IPs in blocked IP list output
Changes
Diff
diff --git a/RNS/Interfaces/BackboneInterface.py b/RNS/Interfaces/BackboneInterface.py
index 4684d5f2..d196efe9 100644
--- a/RNS/Interfaces/BackboneInterface.py
+++ b/RNS/Interfaces/BackboneInterface.py
@@ -564,7 +564,7 @@ class BackboneInterface(Interface):
@property
def blocked_ip_list(self):
if not self.block_fast_flapping: return []
- else: return list(self.fast_flapping.keys())
+ else: return [ip for ip in self.fast_flapping if self.fast_flapping[ip][2] > self.fast_flap_grace]
@property
def blocked_ip_count(self):
Served by rngit 1.5.2 - Generated in 0.04s